/* Reset and Global Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  body {
	font-family: 'Montserrat', sans-serif;
	background-color: #000; /* Black background */
	color: #fff; /* White text */

  }
  
  /* Header Section */
  .page-header {
	padding: 20px 0;
	font-size: 2.5rem;
	background-color: #111;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-bottom: 2px solid #333;
  }
  
  /* Contact Section Title */
  .contact-heading {
	margin-top: 230px;
	margin-bottom: 50px;
;
	font-weight: bold;
	color: #fff;
	font-family: Aeonik;
	font-style: normal;
	font-weight: bold;
	font-size: 72px;
	line-height: 100%;
	text-align: center;
	letter-spacing: -0.01em;
	text-transform: capitalize;
	color: #FFFFFF;
  }
  
  /* Logo Section */
  .brand-logo-container {
	margin: 20px auto;
  }
  
  .brand-logo {
	margin-top: 50px;
	
	max-width: 250px;
	height: auto;
	display: block;
	margin: 0 auto;
  }
  
  @media (max-width: 768px) {
	.brand-logo {
	  max-width: 200px; /* Resize logo for tablets */
	}
  }
  
  @media (max-width: 480px) {
	.brand-logo {
	  max-width: 150px; /* Resize logo for phones */
	}
  }
  
  /* Social Links Section */
  .social-links {
	margin-top: 50px;
	display: flex;
	justify-content: center;
	gap: 30px;
  }
  
  .social-link {
	display: inline-block;
	width: 50px;
	height: 50px;
	transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .social-icon {
	width: 100%;
	height: 100%;
	object-fit: contain;
  }
  
  /* Hover Animation for Social Icons */
  .social-link:hover {
	transform: scale(1.2); /* Enlarge icon on hover */
	filter: drop-shadow(0 0 10px #fff); /* Glow effect */
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
	.social-link {
	  width: 40px;
	  height: 40px; /* Resize social icons for tablets */
	}
  }
  
  @media (max-width: 480px) {
	.social-link {
	  width: 35px;
	  height: 35px; /* Resize social icons for phones */
	}
  }
  